home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_7_form 1 handlers.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  4.7 KB  |  131 lines

  1. global gFormClicks, checkMarks1
  2.  
  3. on openTextForm
  4.   global gMasterData
  5.   go("form1")
  6.   goNarrator(gMasterData, "11")
  7.   setUserArea(gMasterData, #styleForm)
  8.   if voidp(gFormClicks) then
  9.     set gFormClicks to [#empty, #empty, #empty]
  10.   end if
  11.   setPuppetState([10, 12], #c, 1)
  12.   resetStyleClicks()
  13.   setFingerCursor(#on, [5, 6, 7])
  14. end
  15.  
  16. on closeTextForm
  17.   setPuppetState([10, 12], #c, 0)
  18.   setFingerCursor(#off, [5, 6, 7])
  19.   if getaProp(checkMarks1, #style) = 0 then
  20.     setaProp(checkMarks1, #style, 1)
  21.   end if
  22. end
  23.  
  24. on setUserAnswers Xart, verticalLoc
  25.   set vListPos to Xart - 4
  26.   set spriteTop to the top of sprite Xart
  27.   set spriteLeft to the left of sprite Xart + 6
  28.   puppetSound("quickclick")
  29.   case 1 of
  30.     (verticalLoc < (spriteTop + 13)):
  31.       set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 6)
  32.       setAt(gFormClicks, vListPos, #a)
  33.     ((verticalLoc > (spriteTop + 13)) and (verticalLoc < (spriteTop + 28))):
  34.       set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 21)
  35.       setAt(gFormClicks, vListPos, #b)
  36.     ((verticalLoc > (spriteTop + 28)) and (verticalLoc < (spriteTop + 43))):
  37.       set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 36)
  38.       setAt(gFormClicks, vListPos, #c)
  39.     ((verticalLoc > (spriteTop + 43)) and (verticalLoc < (spriteTop + 58))):
  40.       set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 51)
  41.       setAt(gFormClicks, vListPos, #d)
  42.     ((verticalLoc > (spriteTop + 58)) and (verticalLoc < (spriteTop + 73))):
  43.       set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 66)
  44.       setAt(gFormClicks, vListPos, #e)
  45.     ((verticalLoc > (spriteTop + 73)) and (verticalLoc < (spriteTop + 88))):
  46.       set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 81)
  47.       setAt(gFormClicks, vListPos, #f)
  48.   end case
  49.   updateStage()
  50. end
  51.  
  52. on getTextAnswers
  53.   set vTempText to EMPTY
  54.   set the text of member "styleAnswers" to EMPTY
  55.   put "These are your answers to the section What's Your Style?" & RETURN & RETURN after vTempText
  56.   put "What is the style you use most frequently when dealing with key changes in your life?  " after vTempText
  57.   put clicksToText(1) & RETURN & RETURN after vTempText
  58.   put "Complete the following sentence: I believe that style of dealing with change I most frequently use now is -- " after vTempText
  59.   put clicksToText(2) & RETURN & RETURN after vTempText
  60.   put "To what extent do you want to modify your most frequently used style of dealing with change?" && the text of member "style field 1" & RETURN & RETURN after vTempText
  61.   put "Which personal style would you prefer to use most often in dealing with change?  " after vTempText
  62.   put clicksToText(3) & RETURN & RETURN after vTempText
  63.   put "List three reasons for wanting to improve your style of dealing with change, or practice using your chosen style more effectively." && the text of member "style field 2" & RETURN & RETURN after vTempText
  64.   set the text of member "styleAnswers" to vTempText
  65. end
  66.  
  67. on clicksToText thisUn
  68.   case thisUn of
  69.     1, 3:
  70.       case getAt(gFormClicks, thisUn) of
  71.         #empty:
  72.           set vAnswer to "No selection made."
  73.         #a:
  74.           set vAnswer to "Acquiescence"
  75.         #b:
  76.           set vAnswer to "Partnership"
  77.         #c:
  78.           set vAnswer to "Passive resistance"
  79.         #d:
  80.           set vAnswer to "Active resistance"
  81.         #e:
  82.           set vAnswer to "Full Retreat"
  83.         #f:
  84.           set vAnswer to "Active acceptance"
  85.       end case
  86.       return vAnswer
  87.     2:
  88.       case getAt(gFormClicks, 2) of
  89.         #empty:
  90.           set vAnswer to "... no selection made"
  91.         #a:
  92.           set vAnswer to "working against me."
  93.         #b:
  94.           set vAnswer to "not working for me as well as it could be."
  95.         #c:
  96.           set vAnswer to "usually working okay for me."
  97.         #d:
  98.           set vAnswer to "working most of the time."
  99.         #e:
  100.           set vAnswer to "helping me to excel."
  101.       end case
  102.       return vAnswer
  103.   end case
  104. end
  105.  
  106. on resetStyleClicks
  107.   repeat with X = 10 to 12
  108.     set vListPos to X - 9
  109.     set vClickArt to X - 5
  110.     set spriteTop to the top of sprite vClickArt
  111.     set spriteLeft to the left of sprite vClickArt + 6
  112.     case getAt(gFormClicks, vListPos) of
  113.       #empty:
  114.         nothing()
  115.       #a:
  116.         set the loc of sprite X to point(spriteLeft, spriteTop + 6)
  117.       #b:
  118.         set the loc of sprite X to point(spriteLeft, spriteTop + 21)
  119.       #c:
  120.         set the loc of sprite X to point(spriteLeft, spriteTop + 36)
  121.       #d:
  122.         set the loc of sprite X to point(spriteLeft, spriteTop + 51)
  123.       #e:
  124.         set the loc of sprite X to point(spriteLeft, spriteTop + 66)
  125.       #f:
  126.         set the loc of sprite X to point(spriteLeft, spriteTop + 81)
  127.     end case
  128.   end repeat
  129.   updateStage()
  130. end
  131.